github.com/klauspost/compress/flate.compressor.blockStart (field)
11 uses
github.com/klauspost/compress/flate (current package)
deflate.go#L118: blockStart int // window index where current tokens start
deflate.go#L138: if d.blockStart >= windowSize {
deflate.go#L139: d.blockStart -= windowSize
deflate.go#L141: d.blockStart = math.MaxInt32
deflate.go#L174: if d.blockStart <= index {
deflate.go#L175: window = d.window[d.blockStart:index]
deflate.go#L177: d.blockStart = index
deflate.go#L190: if d.blockStart <= index {
deflate.go#L191: window := d.window[d.blockStart:index]
deflate.go#L203: d.blockStart = index
deflate.go#L877: d.blockStart, d.byteAvailable = 0, false
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |